Skip to content
Snippets Groups Projects
Select Git revision
  • 226d00e8aa070f51d97410f0e4c284d957b72708
  • master default protected
  • cmp_tool-improvement
  • v0.15
  • v0.14
  • v0.13
  • v0.12
  • v0.11
  • v0.09
  • v0.08
  • v0.07
  • v0.06
  • v0.05
13 results

README.md

Blame
  • Dockerfile 219 B
    FROM alpine:3.19
    LABEL org.opencontainers.image.authors="martin.weise@tuwien.ac.at"
    
    RUN apk add --no-cache curl bash jq mariadb-client
    
    WORKDIR /home/alpine
    
    COPY ./sync.sh ./sync.sh
    
    ENTRYPOINT [ "bash", "./sync.sh" ]