BeveledCube commited on
Commit
9cca841
1 Parent(s): e995bf4

Changed shit

Browse files
Files changed (2) hide show
  1. .gitignore +2 -1
  2. Dockerfile +1 -1
.gitignore CHANGED
@@ -1,2 +1,3 @@
1
  __pycache__
2
- node_modules
 
 
1
  __pycache__
2
+ node_modules
3
+ poetry.lock
Dockerfile CHANGED
@@ -5,7 +5,7 @@ WORKDIR /api
5
  COPY ./ /api/
6
 
7
  RUN pip install --upgrade pip
8
- RUN pip install poetry
9
  RUN poetry install --no-root
10
 
11
  RUN mkdir /api/cache
 
5
  COPY ./ /api/
6
 
7
  RUN pip install --upgrade pip
8
+ RUN pip install -r requirements.txt
9
  RUN poetry install --no-root
10
 
11
  RUN mkdir /api/cache