All checks were successful
Build and Deploy / build-and-push (push) Successful in 23s
14 lines
429 B
Docker
14 lines
429 B
Docker
# Use the lightweight Nginx image
|
|
FROM nginx:alpine
|
|
|
|
LABEL org.opencontainers.image.source="https://git.ulfrx.dev/ulfr/recipe-mockup"
|
|
|
|
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY manifest.webmanifest /usr/share/nginx/html/
|
|
COPY sw.js /usr/share/nginx/html/
|
|
COPY icons /usr/share/nginx/html/icons
|
|
COPY js /usr/share/nginx/html/js
|
|
COPY css /usr/share/nginx/html/css
|
|
|
|
EXPOSE 80 |