Compare commits
2 Commits
6b3c48e067
...
6bff6fd73e
Author | SHA1 | Date |
---|---|---|
Casey | 6bff6fd73e | |
Vladimir (vapronva) | 43abba6f46 |
|
@ -0,0 +1,6 @@
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
config.ini
|
||||||
|
README.md
|
||||||
|
TODO
|
||||||
|
requirements.txt
|
|
@ -1,6 +1,11 @@
|
||||||
FROM python:3.10-alpine
|
FROM python:3.10-alpine
|
||||||
COPY . /app
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN pip install -r /app/requirements.txt
|
|
||||||
|
COPY requirements.txt /app/requirements.txt
|
||||||
|
|
||||||
|
RUN pip install -r /app/requirements.txt && rm /app/requirements.txt
|
||||||
|
|
||||||
|
COPY . /app
|
||||||
|
|
||||||
CMD ["python3", "-m", "mastoposter", "/config.ini"]
|
CMD ["python3", "-m", "mastoposter", "/config.ini"]
|
||||||
|
|
Loading…
Reference in New Issue