Demosthene-OR commited on
Commit
bf6fe5c
1 Parent(s): 1ad13b3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -25,4 +25,8 @@ WORKDIR $HOME/app
25
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
26
  COPY --chown=user . $HOME/app
27
 
28
- CMD ["uvicorn", "main_dl:api", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
 
25
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
26
  COPY --chown=user . $HOME/app
27
 
28
+ FROM mysql:latest
29
+
30
+ ENV MYSQL_ROOT_PASSWORD=Rakuten
31
+
32
+ EXPOSE 3306