Jofthomas HF staff commited on
Commit
8b62f80
·
verified ·
1 Parent(s): ea1f5e7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -18,8 +18,9 @@ ENV HOME=/home/user \
18
 
19
  WORKDIR $HOME/app
20
 
21
- RUN git clone https://github.com/smogon/pokemon-showdown.git .
 
22
 
23
- RUN npm install
24
 
25
- CMD ["node", "pokemon-showdown", "start"]
 
 
18
 
19
  WORKDIR $HOME/app
20
 
21
+ # Default port for Pokemon Showdown
22
+ EXPOSE 8000
23
 
 
24
 
25
+
26
+ ENTRYPOINT ["/bin/sh", "-c", "node pokemon-showdown"]