mirror of
https://github.com/pinout-xyz/Pinout.xyz.git
synced 2024-11-08 17:47:04 +00:00
e80c814053
* Add "Running in Docker" subsection to README.md
10 lines
160 B
Docker
10 lines
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"] |