mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 15:09:10 -05:00
12 lines
262 B
Docker
12 lines
262 B
Docker
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
|