fuclaude / Dockerfile
coteerratu's picture
Update Dockerfile
c3274da verified
raw
history blame
No virus
556 Bytes
# Use an existing base image
FROM pengzhile/fuclaude:latest
# Set any environment variables if needed
# ENV ENV_VAR_NAME=value
# Expose the port inside the container
EXPOSE 8181
# Set any other configurations or commands if necessary
# For example, if additional setup or commands are needed upon container start-up,
# they can be added here.
# Specify the command to run your application
# CMD ["command", "parameter1", "parameter2", ...]
# Replace the command with the actual command that starts your application
CMD ["./fuclaude", "--port", "8181"]