mirror of
https://github.com/ION606/sharing.git
synced 2026-05-14 21:56:54 +00:00
11 lines
120 B
Docker
11 lines
120 B
Docker
FROM oven/bun
|
|
|
|
WORKDIR /app
|
|
|
|
RUN ls /app > /app/temp.txt
|
|
COPY server.js .
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["bun", "run", "server.js"]
|