mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-04-25 18:20:19 -05:00
bdb3735840
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
9 lines
191 B
Docker
9 lines
191 B
Docker
FROM nginx:mainline-alpine AS runner
|
|
|
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY ./dist /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|
|
|
|
HEALTHCHECK CMD curl --fail http://localhost:80 || exit 1
|