Compare commits

...

2 Commits

Author SHA1 Message Date
mco-system 0386b3313e fix: add extra hosts 2023-04-23 17:57:53 +11:00
mco-system a1d95603a0 fix: add extra hosts 2023-04-23 17:57:37 +11:00
3 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,7 @@ install:
. thsf_venv/bin/activate; \
pip install -r requirements.txt ;\
pip install . ;\
pip install gunicorn; \
pip install gunicorn;
run:
set -e ;\

View File

@ -4,6 +4,8 @@ services:
build:
dockerfile: thsf.Dockerfile
context: .
extra_hosts:
- "23.thsf.net:192.168.122.26"
ports:
- "127.0.0.1:8042:8042"
image: thsf:latest

View File

@ -1,3 +1,4 @@
ARG PRETALX_HOSTS_ENTRY
FROM python:3.9.16-bullseye as thsf_base
RUN apt-get update -y && \
apt-get install -y bash make python3-pip && \