mirror of
https://github.com/penpot/penpot.git
synced 2025-02-02 20:39:09 -05:00
11 lines
235 B
Docker
11 lines
235 B
Docker
FROM nginx:1.17.3
|
|
LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
|
|
|
|
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
|