All checks were successful
Build and Push container / build_concierge_backend (push) Successful in 1m23s
12 lines
348 B
Docker
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
|