Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -4,9 +4,6 @@ FROM node:18-alpine
|
|
4 |
# Create the working directory inside the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Install the npm dependencies
|
8 |
-
RUN npm install
|
9 |
-
|
10 |
# Copy the example config to config.js (or provide your own)
|
11 |
RUN cp config/config-example.js config/config.js
|
12 |
|
@@ -14,4 +11,4 @@ RUN cp config/config-example.js config/config.js
|
|
14 |
EXPOSE 8000
|
15 |
|
16 |
# Finally, run Showdown
|
17 |
-
CMD ["
|
|
|
4 |
# Create the working directory inside the container
|
5 |
WORKDIR /app
|
6 |
|
|
|
|
|
|
|
7 |
# Copy the example config to config.js (or provide your own)
|
8 |
RUN cp config/config-example.js config/config.js
|
9 |
|
|
|
11 |
EXPOSE 8000
|
12 |
|
13 |
# Finally, run Showdown
|
14 |
+
CMD ["./pokemon-showdown "]
|