use prebuilt base image
All checks were successful
ci/woodpecker/push/base Pipeline was successful

This commit is contained in:
gapodo 2023-11-21 16:41:47 +01:00
parent c7d94f8609
commit 7ea4271810

View file

@ -1,19 +1,2 @@
FROM nginx:mainline-alpine
COPY ./docker/default.conf /etc/nginx/conf.d/default.conf
COPY ./docker/nginx.conf /etc/nginx/nginx.conf
COPY ./docker/entrypoint.sh /
RUN apk update --no-cache && apk upgrade --no-cache \
&& apk add --no-cache openssl tzdata \
&& mkdir -p /var/www/TeaWeb /etc/ssl/certs \
&& chmod +x /entrypoint.sh
ENV TZ="Europe/Berlin"
EXPOSE 80 443
ENTRYPOINT ["/entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]
FROM reg.c1.datenclown.at/teaspeak/web-base:latest
COPY ./dist/ /var/www/TeaWeb/