Skip to content

Instantly share code, notes, and snippets.

@SteffenL
Last active February 9, 2020 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteffenL/1f9e37e8dd9fbc806f370cd71ad31b3e to your computer and use it in GitHub Desktop.
Save SteffenL/1f9e37e8dd9fbc806f370cd71ad31b3e to your computer and use it in GitHub Desktop.
AppVeyor Server Dockerfile
FROM mcr.microsoft.com/powershell:ubuntu-18.04
ARG APPVEYOR_VERSION=7.0.2546
RUN apt update && apt upgrade -y && apt install -y libcap2-bin lsof python3
RUN curl -LsSo appveyor-server.deb https://appveyordownloads.blob.core.windows.net/appveyor/${APPVEYOR_VERSION}/appveyor-server_${APPVEYOR_VERSION}_amd64.deb
RUN dpkg -i appveyor-server.deb
RUN /opt/appveyor/server/appveyor version
USER appveyor
WORKDIR /opt/appveyor/server
CMD [ "/opt/appveyor/server/appveyor-server" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment