This commit is contained in:
Bastian Wagner
2026-07-15 15:19:15 +02:00
parent 59319a09b8
commit a79988b35c
8 changed files with 48 additions and 14 deletions

View File

@@ -17,7 +17,7 @@ WORKDIR /app
ENV NODE_ENV=production
ENV API_PORT=3000
ENV WEB_PORT=8080
ENV API_BASE_URL=http://localhost:3000
ENV API_BASE_URL=
RUN apk add --no-cache nginx
@@ -30,5 +30,5 @@ COPY docker/start-single-container.sh /usr/local/bin/start-ldap-portal
RUN chmod +x /usr/local/bin/start-ldap-portal \
&& mkdir -p /run/nginx /var/log/nginx
EXPOSE 3000 8080
EXPOSE 8080
CMD ["start-ldap-portal"]