bridge fix

This commit is contained in:
ION606
2025-08-25 21:54:37 -04:00
parent 27f1216434
commit 926e03fb10
5 changed files with 107 additions and 44 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM oven/bun
WORKDIR /app
RUN ls /app > /app/temp.txt
COPY server.js .
EXPOSE 3000
CMD ["bun", "run", "server.js"]