ryuko-ng/Dockerfile

13 lines
368 B
Text
Raw Normal View History

2022-08-10 21:31:04 +02:00
FROM python:3.10-alpine
2021-02-28 14:42:05 +01:00
WORKDIR /usr/src/app
COPY requirements.txt ./
2022-08-10 21:31:04 +02:00
RUN apk add --no-cache git gcc musl-dev python3-dev libffi-dev openssl-dev cargo && pip install -U pip && pip install --no-cache-dir -r requirements.txt && apk del gcc musl-dev python3-dev libffi-dev openssl-dev cargo
2021-02-28 14:42:05 +01:00
COPY . .
2021-08-01 00:28:20 +03:00
WORKDIR /usr/src/app/robocop_ng
CMD [ "python", "./__init__.py" ]