mirror of
https://github.com/abhinavxd/libredesk.git
synced 2026-09-10 06:05:41 +00:00
17 lines
358 B
Docker
17 lines
358 B
Docker
FROM alpine:3.18
|
|
|
|
# Install necessary packages
|
|
RUN apk --no-cache add ca-certificates tzdata
|
|
|
|
# Set the working directory to /libredesk
|
|
WORKDIR /libredesk
|
|
|
|
# Copy necessary files
|
|
COPY libredesk .
|
|
COPY config.sample.toml config.toml
|
|
|
|
# Expose port 9000 for the application
|
|
EXPOSE 9000
|
|
|
|
# Set the default command to run the libredesk binary
|
|
CMD ["./libredesk"] |