Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Bump dockerfile #65

Merged
merged 1 commit into from Mar 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,7 +1,7 @@
######################################
# Prepare npm_builder
######################################
FROM node:14 as npm_builder
FROM node:16 as npm_builder
WORKDIR /go/src/github.com/openflagr/flagr
ADD . .
ARG FLAGR_UI_POSSIBLE_ENTITY_TYPES=null
Expand All @@ -19,7 +19,7 @@ RUN make build
######################################
# Copy from builder to alpine image
######################################
FROM frolvlad/alpine-glibc:alpine-3.14
FROM frolvlad/alpine-glibc:alpine-3.15
RUN apk add --no-cache curl
WORKDIR /go/src/github.com/openflagr/flagr
VOLUME ["/data"]
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/Dockerfile-Integration-Test
Expand Up @@ -9,7 +9,7 @@ RUN make build
######################################
# Copy from builder to alpine image
######################################
FROM frolvlad/alpine-glibc:alpine-3.14
FROM frolvlad/alpine-glibc:alpine-3.15
RUN apk add --no-cache curl
WORKDIR /go/src/github.com/openflagr/flagr
COPY --from=go_builder /go/src/github.com/openflagr/flagr/flagr ./flagr
Expand Down