mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-13 01:36:22 +00:00
19 lines
329 B
Docker
19 lines
329 B
Docker
FROM registry.gitlab.com/openstapps/openstapps/node-base
|
|
|
|
USER root
|
|
|
|
RUN apk update && \
|
|
apk upgrade && \
|
|
apk add openssl && \
|
|
apk add nginx && \
|
|
apk add nginx-mod-http-vts && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
ADD . /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN mv /app/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
CMD ["sh", "./bin/run-docker.sh"]
|