Jofthomas commited on
Commit
b9e3c84
·
verified ·
1 Parent(s): 5c2ed06

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -6
Dockerfile CHANGED
@@ -1,15 +1,9 @@
1
  # Start with Node.js 18 on Alpine
2
  FROM node:18-alpine
3
 
4
- # Install Git
5
- RUN apk add --no-cache git
6
-
7
  # Create the working directory inside the container
8
  WORKDIR /app
9
 
10
- # Clone the repo (you can specify a branch or commit if desired)
11
- RUN git clone https://github.com/smogon/pokemon-showdown.git .
12
-
13
  # Install the npm dependencies
14
  RUN npm install
15
 
 
1
  # Start with Node.js 18 on Alpine
2
  FROM node:18-alpine
3
 
 
 
 
4
  # Create the working directory inside the container
5
  WORKDIR /app
6
 
 
 
 
7
  # Install the npm dependencies
8
  RUN npm install
9