Skip to content

Commit

Permalink
Update node and python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kuboschek committed Aug 17, 2024
1 parent 1939907 commit 4fa5e70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM alpine/git:v2.26.2-amd64 as version
FROM alpine/git:2.45.2 as version

ADD .git .git
RUN git describe --always > /PORTAL_VERSION
RUN echo "Saved version file containing '$(cat /PORTAL_VERSION)'"

# image for building node dependencies
FROM node:16-alpine as frontend
FROM node:18-alpine as frontend

RUN apk add --no-cache \
git
Expand All @@ -23,7 +23,7 @@ ADD assets/ /app/assets/
RUN yarn build

# image for python
FROM python:3.10-alpine
FROM python:3.12-alpine

# Install binary python dependencies
RUN apk add --no-cache \
Expand Down

0 comments on commit 4fa5e70

Please sign in to comment.