Skip to content

Commit

Permalink
Merge pull request #43 from traPtitech/fix/docker_java_version
Browse files Browse the repository at this point in the history
🔧 ビルドが通らなくなっていたのでビルド用DockerfileのJavaバージョンを11に変更
  • Loading branch information
yukikurage authored Oct 28, 2024
2 parents 4fda3f9 + f8c742d commit 53cc550
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM node:16-alpine as builder
FROM node:18.4-alpine as builder
WORKDIR /app

COPY package*.json ./
RUN apk add --update --no-cache openjdk8-jre-base
RUN apk add --update --no-cache openjdk11-jre-headless
# RUN apt-get update && apt-get install -y default-jre
COPY ./scripts ./scripts
RUN npm ci
COPY . .
Expand Down

0 comments on commit 53cc550

Please sign in to comment.