mirror of
https://github.com/anyproto/any-sync-dockercompose.git
synced 2025-06-08 05:47:03 +09:00
6 lines
228 B
Text
6 lines
228 B
Text
# syntax=docker/dockerfile:1
|
|
FROM python:3.11-alpine
|
|
WORKDIR /code
|
|
COPY docker-generateconfig/env-requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
ENTRYPOINT ["python", "/code/docker-generateconfig/env.py"]
|