Some checks are pending
Build and push Docker image / build-and-push (push) Waiting to run
6 lines
144 B
Docker
6 lines
144 B
Docker
FROM nginx:alpine
|
|
|
|
COPY index.html style.css app.js recipes.json /usr/share/nginx/html/
|
|
COPY recipes/ /usr/share/nginx/html/recipes/
|
|
|
|
EXPOSE 80
|