1
0
Fork 0
easy-appointments/docker/template/Dockerfile

11 lines
203 B
Docker

FROM alpine:3.18
# Create directories for volume mounts
RUN mkdir -p /scratch /temp
# Set working directory
WORKDIR /scratch
# Simple command to keep container running
CMD ["tail", "-f", "/dev/null"]