Skip to content

Commit d45d257

Browse files
committed
Bump base image versions in Dockerfile
Recently, building the container images started to fail: https://github.com/unioslo/mreg/actions/runs/8784288442/job/24102213934 This can be fixed by using newer versions of the base images.
1 parent f927cdb commit d45d257

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build stage
2-
FROM python:3.10-alpine as builder
2+
FROM python:3.11-alpine as builder
33
WORKDIR /usr/src/mreg
44
ENV PYTHONDONTWRITEBYTECODE 1
55
ENV PYTHONUNBUFFERED 1
@@ -11,7 +11,7 @@ COPY requirements*.txt ./
1111
RUN pip wheel --no-cache-dir --wheel-dir /usr/src/mreg/wheels -r requirements.txt
1212

1313
# final stage
14-
FROM alpine:3.17
14+
FROM alpine:3.18
1515
EXPOSE 8000
1616

1717
COPY requirements*.txt entrypoint* manage.py /app/

0 commit comments

Comments
 (0)