Last active
February 9, 2020 11:56
-
-
Save SteffenL/1f9e37e8dd9fbc806f370cd71ad31b3e to your computer and use it in GitHub Desktop.
AppVeyor Server Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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