fix: dockerfile not exposing webserver

This commit is contained in:
2022-09-02 18:43:57 +02:00
parent c4d1f95040
commit 81bd93c329

View File

@@ -8,6 +8,10 @@ RUN npm install
RUN npm install -g ts-node typescript
EXPOSE 7272
COPY . .
CMD ts-node --transpile-only index.ts
CMD ts-node --transpile-only index.ts
CMD node webserver.js