Skip to content

Commit

Permalink
Use Debian Bookworm base image (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 authored May 30, 2024
1 parent 50da520 commit ef91592
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.9-buster AS build
FROM python:3.9-bookworm AS build

COPY . /src
WORKDIR /src/python
RUN python3 setup.py bdist_wheel

FROM python:3.9-slim-buster
FROM python:3.9-slim-bookworm
ARG TZ
ENV TZ=$TZ

Expand Down
2 changes: 1 addition & 1 deletion deploy/etos-sse/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.20-alpine AS build
WORKDIR /tmp/sse
COPY . .
RUN apk add --no-cache make=4.4.1-r2 git=2.43.0-r0 && make build
RUN apk add --no-cache make=4.4.1-r2 git=2.43.4-r0 && make build

FROM alpine:3.17.3
ARG TZ
Expand Down

0 comments on commit ef91592

Please sign in to comment.