Skip to content

Commit 10e134a

Browse files
fix: migrate base image on alpine (#1172)
Signed-off-by: Ilya Kheifets <[email protected]>
1 parent 25143d8 commit 10e134a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
FROM python:3.10-bullseye AS base
1+
FROM python:3.10-alpine AS base
22

33
ENV PYTHONFAULTHANDLER=1 \
44
PYTHONHASHSEED=random \
55
PYTHONUNBUFFERED=1
6+
RUN apk add -U git
67
RUN mkdir /app
78
WORKDIR /app
89

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env bash
1+
#!/usr/bin/env sh
22
set -e
33
. /app/.venv/bin/activate
44
LOG_LEVEL=${LOG_LEVEL:=INFO}

0 commit comments

Comments
 (0)