0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 23:49:45 -05:00
penpot/backend/Dockerfile

53 lines
1.4 KiB
Text
Raw Normal View History

2019-02-15 13:13:36 +01: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; \
2019-02-16 16:50:39 +01:00
rm -f Dockerfile; \
bash -c "/home/uxbox/backend/scripts/dist.sh"
# Once application has been built, prepare production image
FROM openjdk:8-jre
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
2019-02-16 16:50:39 +01:00
COPY --from=0 /home/uxbox/backend/docker-entrypoint.sh /entrypoint.sh
2019-02-16 00:59:31 +01:00
ENV UXBOX_HTTP_SERVER_DEBUG=false \
UXBOX_DATABASE_USERNAME="uxbox" \
UXBOX_DATABASE_PASSWORD="youshouldoverwritethiswithsomethingelse" \
UXBOX_DATABASE_NAME="uxbox" \
UXBOX_DATABASE_SERVER="localhost" \
2019-02-16 00:59:31 +01:00
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 \
UXBOX_SECRET=""
2019-02-16 04:20:11 +01:00
RUN set -ex; \
chmod 755 /entrypoint.sh; \
mkdir -p /srv/uxbox/resources/public/media; \
mkdir -p /srv/uxbox/resources/public/static;
VOLUME /srv/uxbox/resources/public
WORKDIR /srv/uxbox/
EXPOSE 6060
ENTRYPOINT ["sh", "/entrypoint.sh"]
CMD ["java", "-jar", "app.jar"]