0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 08:50:57 -05:00
penpot/backend/Dockerfile

52 lines
1.4 KiB
Text
Raw Normal View History

2019-02-15 07:13:36 -05:00
FROM monogramm/docker-uxbox-builder:latest
ENV LEIN_ROOT=TRUE
# Copy backend source and build release
COPY . /home/uxbox/backend
RUN set -ex; \
cd backend; \
rm -f Dockerfile docker-entrypoint.sh; \
bash -c "/home/uxbox/backend/scripts/dist.sh"
# Once application has been built, prepare production image
FROM openjdk:8-jre-alpine
LABEL maintainer="mathieu.brunot at monogramm dot io"
# Add uxbox as provided by builder
COPY --from=0 /home/uxbox/backend/dist/uxbox-backend.jar /srv/uxbox/app.jar
VOLUME /srv/uxbox/resources/public
WORKDIR /srv/uxbox/
RUN set -ex; \
mkdir -p /srv/uxbox/resources/public/media; \
mkdir -p /srv/uxbox/resources/public/static;
2019-02-15 18:59:31 -05:00
ENV UXBOX_HTTP_SERVER_DEBUG=false \
UXBOX_DATABASE_USERNAME=uxbox \
UXBOX_DATABASE_PASSWORD=youshouldoverwritethiswithsomethingelse \
UXBOX_DATABASE_NAME=uxbox \
UXBOX_DATABASE_SERVER=localhost \
UXBOX_DATABASE_PORT=5432 \
UXBOX_EMAIL_REPLY_TO=no-reply@uxbox.io \
UXBOX_EMAIL_FROM=no-reply@uxbox.io \
UXBOX_SMTP_HOST=localhost \
UXBOX_SMTP_PORT=25 \
UXBOX_SMTP_USER=uxbox \
UXBOX_SMTP_PASSWORD=youshouldoverwritethiswithsomethingelse \
UXBOX_SMTP_SSL=false \
UXBOX_SMTP_TLS=false \
UXBOX_SMTP_ENABLED=false \
2019-02-15 18:59:31 -05:00
UXBOX_SECRET=youshouldoverwritethiswithsomethingelse
EXPOSE 6060
ENTRYPOINT ["sh", "/entrypoint.sh"]
CMD ["java", "-jar", "app.jar"]