tangled
alpha
login
or
join now
danabra.mov
/
statusphere-react
forked from
samuel.fm/statusphere-react
0
fork
atom
the statusphere demo reworked into a vite/react app in a monorepo
0
fork
atom
overview
issues
pulls
pipelines
Remove dockerfile
Paul Frazee
2 years ago
18a16443
4c89fc98
-22
1 changed file
expand all
collapse all
unified
split
Dockerfile
-22
Dockerfile
···
1
1
-
FROM node:22.5-slim
2
2
-
3
3
-
# Create app directory
4
4
-
WORKDIR /usr/src/app
5
5
-
6
6
-
# Copy package.json and package-lock.json
7
7
-
COPY package*.json ./
8
8
-
9
9
-
# Install app dependencies
10
10
-
RUN npm ci
11
11
-
12
12
-
# Bundle app source
13
13
-
COPY . .
14
14
-
15
15
-
# Build the TypeScript files
16
16
-
RUN npm run build
17
17
-
18
18
-
# Expose port 8080
19
19
-
EXPOSE 8080
20
20
-
21
21
-
# Start the app
22
22
-
CMD npm run start