mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
24 lines
561 B
Docker
24 lines
561 B
Docker
|
FROM node:latest
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y nginx
|
||
|
|
||
|
RUN addgroup --system nginx && \
|
||
|
adduser --system --no-create-home --disabled-login --ingroup nginx nginx
|
||
|
|
||
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
|
||
|
COPY dist/ /usr/share/nginx/html/
|
||
|
|
||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||
|
|
||
|
COPY nginx-signed.crt /etc/ssl/certs/nginx-signed.crt
|
||
|
COPY nginx-signed.key /etc/ssl/private/nginx-signed.key
|
||
|
|
||
|
RUN chown -R nginx:nginx /etc/ssl/certs/nginx-signed.crt /etc/ssl/private/nginx-signed.key
|
||
|
|
||
|
EXPOSE 80 443
|
||
|
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|