Browse Source

Dockerfile cleanup

Kirk Trombley 5 years ago
parent
commit
499bb76723
1 changed files with 2 additions and 1 deletions
  1. 2 1
      server/Dockerfile

+ 2 - 1
server/Dockerfile

@@ -4,12 +4,13 @@ RUN pip install --upgrade pip gunicorn
 
 ENV TS_SECRET_FILE /secret/secret.toml
 
-WORKDIR /app
+WORKDIR /var/tss
 
 EXPOSE 5000
 
 ADD requirements.txt .
 RUN pip install -r requirements.txt
+RUN rm requirements.txt
 
 ADD app.py .