mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-06-27 10:06:17 +00:00
Add docker files for expo page
This commit is contained in:
parent
578b0e728b
commit
77c0711a24
11 changed files with 76 additions and 522 deletions
16
DV8-Expo/Dockerfile
Normal file
16
DV8-Expo/Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
FROM alpine:latest
|
||||
|
||||
EXPOSE 5000
|
||||
RUN apk update && apk add python3 py3-pip
|
||||
WORKDIR /data
|
||||
|
||||
COPY requirements.txt requirements.txt
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
RUN mkdir /storage
|
||||
COPY ./website ./website
|
||||
COPY ./run.sh ./run.sh
|
||||
RUN chmod +x ./run.sh
|
||||
|
||||
CMD ["./run.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue