mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2024-12-23 01:15:29 +00:00
13 lines
368 B
Docker
13 lines
368 B
Docker
FROM python:3.10-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY requirements.txt ./
|
|
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
|
|
|
|
COPY . .
|
|
|
|
WORKDIR /usr/src/app/robocop_ng
|
|
|
|
CMD [ "python", "./__init__.py" ]
|