mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
12 lines
211 B
Docker
12 lines
211 B
Docker
FROM python:3-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN apk add --no-cache git gcc libffi-dev musl-dev
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["/bin/sh", "build.sh"]
|