Skip to content

Commit f4bd927

Browse files
authored
chore(ci): drop Dockerfile pins (#2016)
1 parent accac67 commit f4bd927

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

backend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Builder
2-
FROM ghcr.io/graalvm/native-image:22.3.3@sha256:4aeee052a80237fa8b32c074d2b7b7adc92271fc4bda724f0b1c2ea0f2f884cb AS build
2+
FROM ghcr.io/graalvm/native-image:22.3.3 AS build
33

44
# Copy
55
WORKDIR /app
@@ -12,7 +12,7 @@ RUN ./mvnw -B package -Pnative -DskipTests
1212

1313

1414
### Deployer
15-
FROM gcr.io/distroless/java-base:nonroot@sha256:0f4c98b703de8a2abcc2e3fdef78e1bb4936e619dbdd34f74ac6fd54d43fd184 AS deploy
15+
FROM gcr.io/distroless/java-base:nonroot AS deploy
1616
ARG PORT=8090
1717

1818
# Copy

frontend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build static files
22
# Node Bullseye has npm
3-
FROM node:18.20.8-bullseye-slim@sha256:912df8d9d8d23d39b463a8634d51cac990d89d2f62a6504e1d35296eb4f38251 AS build
3+
FROM node:18.20.8-bullseye-slim AS build
44
ENV NODE_OPTIONS="--max-old-space-size=3072"
55

66
# Build
@@ -14,7 +14,7 @@ RUN npm ci --ignore-scripts --no-update-notifier --omit=dev && \
1414

1515
# Deploy container
1616
# Caddy serves static files
17-
FROM caddy:2.10.0-alpine@sha256:e2e3a089760c453bc51c4e718342bd7032d6714f15b437db7121bfc2de2654a6
17+
FROM caddy:2.10.0-alpine
1818
RUN apk add --no-cache ca-certificates curl
1919

2020
# Copy files and run formatting

oracle-api/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/graalvm/native-image:22.3.3@sha256:4aeee052a80237fa8b32c074d2b7b7adc92271fc4bda724f0b1c2ea0f2f884cb AS build
1+
FROM ghcr.io/graalvm/native-image:22.3.3 AS build
22

33
# Copy
44
WORKDIR /app
@@ -10,7 +10,7 @@ RUN ./mvnw package -Pnative -DskipTests -Dskip.unit.tests=true && \
1010

1111

1212
### Deployer
13-
FROM eclipse-temurin:17.0.15_6-jdk-jammy@sha256:d80cf84d4d49682f047cb303a11be1fcc8322b1e4cd7a7c2b17454085c1f2ffb AS deploy
13+
FROM eclipse-temurin:17.0.15_6-jdk-jammy AS deploy
1414

1515
# Java vars
1616
ENV LANG=en_CA.UTF-8

0 commit comments

Comments
 (0)