mirror of
https://github.com/cupcakearmy/confluence-markdown-sync.git
synced 2024-12-22 07:56:25 +00:00
14 lines
211 B
Docker
14 lines
211 B
Docker
FROM python:3.10-alpine
|
|
|
|
WORKDIR /action
|
|
|
|
COPY ./Pipfile* ./
|
|
RUN pip install pipenv && \
|
|
pipenv install --system --deploy && \
|
|
pipenv --clear
|
|
|
|
COPY ./src .
|
|
|
|
ENTRYPOINT [ "python" ]
|
|
CMD [ "/action/main.py" ]
|