Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -13,4 +13,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
|
|
| 13 |
COPY package*.json ./
|
| 14 |
COPY src ./src
|
| 15 |
RUN npm install
|
|
|
|
|
|
|
|
|
|
| 16 |
RUN npm run dev
|
|
|
|
| 13 |
COPY package*.json ./
|
| 14 |
COPY src ./src
|
| 15 |
RUN npm install
|
| 16 |
+
# Expose the desired port
|
| 17 |
+
EXPOSE 7860
|
| 18 |
+
|
| 19 |
RUN npm run dev
|