old-website/website/Dockerfile

19 lines
339 B
Docker
Raw Normal View History

2023-06-18 18:06:01 +00:00
# syntax=docker/dockerfile:1
FROM alpine:latest
EXPOSE 8000
2023-06-18 21:50:07 +00:00
RUN apk update && apk add build-base postgresql-client \
python3 py3-pip python3-dev --no-cache
2023-06-18 18:06:01 +00:00
2023-06-18 21:50:07 +00:00
RUN mkdir /app
WORKDIR /app
2023-06-18 18:06:01 +00:00
2023-06-18 21:50:07 +00:00
COPY requirements.txt requirements.txt
2023-06-18 18:06:01 +00:00
RUN pip install -r requirements.txt
2023-06-18 21:50:07 +00:00
COPY website .
COPY run.sh run.sh
RUN chmod +x run.sh
CMD ["./run.sh"]