mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
13 lines
322 B
Docker
13 lines
322 B
Docker
# Once application has been built, prepare production image
|
|
FROM nginx:alpine
|
|
|
|
LABEL maintainer="Monogramm Maintainers <opensource at monogramm dot io>"
|
|
|
|
ENV LANG=en_US.UTF-8 \
|
|
LC_ALL=C.UTF-8
|
|
|
|
# Copy built app to www root
|
|
COPY ./dist /usr/share/nginx/html
|
|
|
|
# NGINX configurations
|
|
COPY ./nginx/conf.d /etc/nginx/conf.d
|