2021-02-28 13:42:05 +00:00
|
|
|
FROM python:alpine
|
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
|
|
|
COPY requirements.txt ./
|
|
|
|
RUN apk add --no-cache 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
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
2021-07-31 21:28:20 +00:00
|
|
|
WORKDIR /usr/src/app/robocop_ng
|
|
|
|
|
|
|
|
CMD [ "python", "./__init__.py" ]
|