mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-01-29 00:58:24 +00:00
14 lines
269 B
Docker
14 lines
269 B
Docker
|
# syntax=docker/dockerfile:1
|
||
|
FROM alpine:latest
|
||
|
|
||
|
EXPOSE 8000
|
||
|
WORKDIR /website
|
||
|
|
||
|
COPY requirements.txt requirements.txt
|
||
|
COPY ./website ./website
|
||
|
|
||
|
RUN apk update && apk add python3 py3-pip
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
CMD ["python3", "manage.py", "runserver", ""]
|