Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN git clone --single-branch ${JMM_BRANCH:+--branch $JMM_BRANCH} ${JMM_URL} com

RUN cd compiler_git && gradle installDist

RUN mkdir -p compiler && cp -r compiler_git/config.properties compiler_git/build/install/jmm compiler/
RUN mkdir -p compiler && cp -r compiler_git/config.properties compiler_git/libs-jmm compiler_git/build/install/jmm compiler/

FROM ${JMM_STRATEGY} AS strategy

Expand Down Expand Up @@ -62,7 +62,7 @@ RUN \
# Production image, copy all the files and run next
FROM base AS runner

RUN apk add --no-cache openjdk21-jre
RUN apk add --no-cache openjdk21-jre bash

ENV NODE_ENV production
# Uncomment the following line in case you want to disable telemetry during runtime.
Expand Down