diff options
| author | Fuwn <[email protected]> | 2023-01-02 23:17:23 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-01-02 23:17:23 -0800 |
| commit | e6fbe3b217a87157526c436c93431cda65b2db75 (patch) | |
| tree | f6b09b64ec5ec71ebb732a7a13733cf6f060a1f9 /Dockerfile | |
| parent | feat(bot.py): always refresh token (diff) | |
| download | rubys_song_skipper-main.tar.xz rubys_song_skipper-main.zip | |
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..51bcd22 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.10.9 + +EXPOSE 80 + +WORKDIR /app + +COPY requirements.txt requirements.txt + +RUN pip3 install -r requirements.txt + +COPY . . + +CMD ["python3", "rubys_song_skipper"] |