mirror of
https://github.com/penpot/penpot.git
synced 2025-02-09 00:28:20 -05:00
f57ce57cb3
- Migrate to from ubuntu to debian. - Add new buildenv image. - Remove production images building from this repo. - Better comaptibility with other architectures (arm64). - Improved config management.
11 lines
235 B
Docker
11 lines
235 B
Docker
FROM nginx:1.17.7
|
|
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
|