gitea init

This commit is contained in:
yen3k
2023-08-07 11:09:04 +02:00
commit f158f1e66a
7 changed files with 163 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# syntax=docker/dockerfile:1
FROM python:3.10-slim-bullseye
WORKDIR /app
RUN apt-get update && apt-get install -y \
gcc \
libffi-dev \
libssl-dev
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY seshsecretary.py seshsecretary.py
CMD ["python", "seshsecretary.py"]