Files
lookbusy-docker/Dockerfile
T
10h30 e627cf1708 Update Dockerfile
Replace ubuntu with alpine base image to reduce docker image size from 450MB to 10MB
2023-05-24 16:03:15 +07:00

11 lines
282 B
Docker

FROM alpine:3.14
WORKDIR /app
RUN apk update
RUN apk add --no-cache cmake build-base git && \
git clone https://github.com/10h30/lookbusy.git && \
cd lookbusy && chmod +x ./configure && ./configure && make && \
apk del build-base git cmake
CMD ["sh", "/app/start.sh"]