-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ee136d
commit 44963ee
Showing
3 changed files
with
2 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
FROM python:3.9.12-bullseye | ||
RUN apt-get update && apt-get install -y supervisor | ||
|
||
COPY . /publisher | ||
WORKDIR /publisher | ||
|
||
RUN python -m venv .venv | ||
ENV PATH="/publisher/.venv/bin:$PATH" | ||
RUN pip install --upgrade setuptools pip && pip install -e . | ||
|
||
RUN ln -s supervisord.conf /etc/supervisor/conf.d/supervisord.conf | ||
CMD ["/usr/bin/supervisord"] | ||
CMD ["python", "-m", "publisher", "--config", "config/config.toml"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.