14 lines
348 B
Plaintext
Executable File
14 lines
348 B
Plaintext
Executable File
# 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"]
|