mirror of
https://github.com/trailbaseio/trailbase.git
synced 2025-12-30 06:09:48 -06:00
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
|