0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-12 18:18:24 -05:00

🐛 Not use alpine as snappy needs libc and alpine use musl

This commit is contained in:
mathieu.brunot 2019-02-17 18:19:35 +01:00
parent 4cf2fa59ac
commit 06cb9d9808
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0

View file

@ -12,7 +12,7 @@ RUN set -ex; \
# Once application has been built, prepare production image
FROM openjdk:8-jre-alpine
FROM openjdk:8-jre
LABEL maintainer="mathieu.brunot at monogramm dot io"
@ -38,9 +38,6 @@ ENV UXBOX_HTTP_SERVER_DEBUG=false \
UXBOX_SECRET=""
RUN set -ex; \
apk add --no-cache \
libc6-compat \
; \
chmod 755 /entrypoint.sh; \
mkdir -p /srv/uxbox/resources/public/media; \
mkdir -p /srv/uxbox/resources/public/static;