Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -15,9 +15,11 @@ RUN pnpm install
|
|
| 15 |
RUN npm install -g pake-cli
|
| 16 |
RUN pnpm pake-linux
|
| 17 |
|
|
|
|
|
|
|
| 18 |
RUN chmod +x /app/narratium.deb
|
| 19 |
RUN apt install /app/narratium.deb
|
| 20 |
-
|
| 21 |
#COPY run.sh /run.sh
|
| 22 |
#RUN chmod +x /run.sh
|
| 23 |
|
|
|
|
| 15 |
RUN npm install -g pake-cli
|
| 16 |
RUN pnpm pake-linux
|
| 17 |
|
| 18 |
+
RUN cp /app/narratium.deb /output/narratium.deb
|
| 19 |
+
ENV OUTPUT_DIR=/output
|
| 20 |
RUN chmod +x /app/narratium.deb
|
| 21 |
RUN apt install /app/narratium.deb
|
| 22 |
+
|
| 23 |
#COPY run.sh /run.sh
|
| 24 |
#RUN chmod +x /run.sh
|
| 25 |
|