Skip to content

Commit

Permalink
feat: move to alpine base image
Browse files Browse the repository at this point in the history
  • Loading branch information
ialejandro committed Aug 23, 2024
1 parent b86b169 commit 298d1c3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
ARG PYTHON_VERSION=3.12.5

FROM python:${PYTHON_VERSION}
FROM python:${PYTHON_VERSION}-alpine

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

COPY app /app
COPY requirements.txt /requirements.txt
COPY Pipfile* /

RUN pip install -r /requirements.txt
RUN pip install pipenv && \
pipenv sync --system

WORKDIR /app

Expand Down

0 comments on commit 298d1c3

Please sign in to comment.