File size: 556 Bytes
c3274da
 
9b6241d
c3274da
 
9b6241d
c3274da
 
9b6241d
c3274da
 
 
9b6241d
c3274da
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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"]