We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25143d8 commit 10e134aCopy full SHA for 10e134a
Dockerfile
@@ -1,8 +1,9 @@
1
-FROM python:3.10-bullseye AS base
+FROM python:3.10-alpine AS base
2
3
ENV PYTHONFAULTHANDLER=1 \
4
PYTHONHASHSEED=random \
5
PYTHONUNBUFFERED=1
6
+RUN apk add -U git
7
RUN mkdir /app
8
WORKDIR /app
9
entrypoint.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/usr/bin/env sh
set -e
. /app/.venv/bin/activate
LOG_LEVEL=${LOG_LEVEL:=INFO}
0 commit comments