Livechat
- Fixed forgetting to import "showActualGameMessage" - Changed filename "launchPrivateChat" to "showPrivateChat.js" - Fixed bug on buttons "private" and "game" Global - Reorganize folders
This commit is contained in:
18
docker-compose/requirements/djangoserver/Dockerfile
Normal file
18
docker-compose/requirements/djangoserver/Dockerfile
Normal file
@ -0,0 +1,18 @@
|
||||
FROM debian:buster
|
||||
|
||||
RUN apt update && apt upgrade -y
|
||||
|
||||
RUN apt install -y python
|
||||
RUN apt install -y python3-pip
|
||||
RUN pip3 install django
|
||||
|
||||
|
||||
RUN mkdir -p /var/www/djangoserver/
|
||||
RUN mkdir -p /var/www/djangoserver/static/
|
||||
COPY file/server /var/www/djangoserver/server
|
||||
RUN chmod 755 /var/www/djangoserver/
|
||||
RUN chown -R www-data:www-data /var/www/djangoserver/
|
||||
|
||||
WORKDIR /var/www/djangoserver
|
||||
|
||||
ENTRYPOINT [ "python", "/var/www/djangoserver/server/main.py" ]
|
Reference in New Issue
Block a user