Skip to content

Commit 298d1c3

Browse files
committed
feat: move to alpine base image
1 parent b86b169 commit 298d1c3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
ARG PYTHON_VERSION=3.12.5
22

3-
FROM python:${PYTHON_VERSION}
3+
FROM python:${PYTHON_VERSION}-alpine
44

55
LABEL maintainer="Iván Alejandro Marugán <hello@ialejandro.rocks>" \
66
description="Bitbucket Bot for Google Chat"
77

88
COPY app /app
9-
COPY requirements.txt /requirements.txt
9+
COPY Pipfile* /
1010

11-
RUN pip install -r /requirements.txt
11+
RUN pip install pipenv && \
12+
pipenv sync --system
1213

1314
WORKDIR /app
1415

0 commit comments

Comments
 (0)