mirror of
https://github.com/pinout-xyz/Pinout.xyz.git
synced 2025-02-21 12:26:15 +00:00
10 lines
No EOL
160 B
Docker
10 lines
No EOL
160 B
Docker
FROM python:2.7-slim
|
|
|
|
COPY . ./
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y make
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["bash", "-c", "make serve LANG=en"] |