Spaces:
Hamed744
/
Sleeping

File size: 509 Bytes
a8839e2
 
 
 
9a7a261
c646a5b
a8839e2
 
 
 
 
c646a5b
1dfeea6
5120e77
c646a5b
 
 
 
a8839e2
 
 
9a7a261
a8839e2
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# SPDX-FileCopyrightText: Hadad <[email protected]>
# SPDX-License-Identifier: MIT
#

# Use a specific container image for the sever
FROM hadadrjt/playground:public-latest

# Set the main working directory inside the container
WORKDIR /app

# Copy all files into the container
COPY . .

# Install all dependencies
RUN npx assistant-ui@latest add syntax-highlighter \
    && npm install \
    && npm run build

# Open the port so the web can be accessed
EXPOSE 3000

# Start the server
CMD ["npm", "start"]