Add Dockerfile and captain-definition for container setup

This commit is contained in:
fzzinchemical
2025-03-25 21:52:28 +01:00
parent 650b78d298
commit 6e5a880867
3 changed files with 5 additions and 0 deletions

13
Dockerfile Executable file
View File

@@ -0,0 +1,13 @@
# Use the official Deno image as the base image
FROM denoland/deno:alpine
# Set the working directory inside the container
WORKDIR /app
# Copy the current directory contents into the container
COPY . /app
# Expose the port that the application will run on
EXPOSE 6969
# Set the default command to run the Deno task
CMD ["deno", "task", "admin"]