Skip to content

Commit

Permalink
🔧 ビルドが通らなくなっていたのでwビルド用DockerfileのJavaバージョンを11に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
ikura-hamu committed Oct 28, 2024
1 parent 4fda3f9 commit f8c742d
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 f8c742d

Please sign in to comment.