ryuko-ng/Dockerfile

13 lines
341 B
Docker
Raw Normal View History

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