fix: remove nonexistent deno.json from Dockerfile

This commit is contained in:
Ajax Davis 2025-12-05 01:10:42 +10:00
parent 750ff2afbe
commit 6ec6f790d3

View file

@ -7,9 +7,8 @@ WORKDIR /app
# Set Deno cache directory to use mounted volume
ENV DENO_DIR=/data
# Copy files
# Copy server file
COPY server.ts .
COPY deno.json .
# Expose port (Railway will set PORT env var)
EXPOSE 3002