mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-04 04:22:50 +00:00
12 lines
221 B
Docker
12 lines
221 B
Docker
FROM registry.gitlab.com/openstapps/projectmanagement/node
|
|
|
|
ADD . /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk add --update nginx && \
|
|
rm -rf /var/cache/apk/* && \
|
|
mv /app/nginx.conf /etc/nginx/
|
|
|
|
CMD ["sh", "./bin/run-docker.sh"]
|