TRMT commited on
Commit
484be0a
·
1 Parent(s): 797ee0d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,13 +2,13 @@
2
  FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9
3
 
4
  # 作業ディレクトリを設定
5
- WORKDIR /
6
 
7
  RUN mkdir CACHE && chmod -R 777 CACHE
8
  ENV TRANSFORMERS_CACHE CACHE
9
 
10
  # Copy the current directory contents into the container at /app
11
- COPY . /
12
 
13
  RUN dir
14
 
 
2
  FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9
3
 
4
  # 作業ディレクトリを設定
5
+ WORKDIR /my_codes
6
 
7
  RUN mkdir CACHE && chmod -R 777 CACHE
8
  ENV TRANSFORMERS_CACHE CACHE
9
 
10
  # Copy the current directory contents into the container at /app
11
+ COPY . /my_codes
12
 
13
  RUN dir
14