docker-tpl/Dockerfile
Angel Nunez Mencias ce3d70e133
All checks were successful
Build and Push container / build_concierge_backend (push) Successful in 1m23s
add dev container
2024-11-03 23:18:22 -03:00

12 lines
348 B
Docker

FROM alpine AS common
# Insert here instructions to build your container, both for dev and production
# Example - install a web server
RUN apk add nginx
FROM common as dev
# Insert here all the dev only tools you need such as debuggers
RUN apk add git
FROM common as prod
# Insert here production only things such as keys or production settings