diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-08-23 14:44:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 14:44:33 -0700 |
commit | 0c563fc28fefa0cd7181fd78c579c3a86faaa4f9 (patch) | |
tree | b67514fc49c7d19821d1a7f03579259b2948cc48 /Dockerfile | |
parent | c5211c2cd69f368cc564aad155080957b754de19 (diff) | |
download | sncontinue-0c563fc28fefa0cd7181fd78c579c3a86faaa4f9.tar.gz sncontinue-0c563fc28fefa0cd7181fd78c579c3a86faaa4f9.tar.bz2 sncontinue-0c563fc28fefa0cd7181fd78c579c3a86faaa4f9.zip |
Testing gh workflow (#401)
* testing
* logging again
* log home dir
* build m1 script
* correctly parse dates in history.tsx
* logging
* add redbaron to requirements.txt
* tweaks before merging to main
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..73eda76c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +# A Dockerfile for quickly building and testing the pyinstaller binary + +FROM python:3.9 + +# Set the working directory to /app + +WORKDIR /app + +# Copy the current directory contents into the container at /app + +COPY . /app + +# Install any needed packages specified in requirements.txt +RUN pip install pyinstaller + +RUN pip install -r /app/continuedev/requirements.txt + +RUN pyinstaller run.spec + +RUN chmod +x /app/dist/run + +CMD ["/app/dist/run"] |