Last active
September 26, 2024 00:27
-
-
Save viniciussanchez/c04d867126af305365c2567db746f937 to your computer and use it in GitHub Desktop.
PAServer with Docker - Delphi (Linux)
This file contains hidden or 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
# Docwiki | |
# https://docwiki.embarcadero.com/RADStudio/Sydney/en/Linux_Application_Development | |
FROM ubuntu:18.04 | |
RUN apt update -y && apt upgrade -y && apt dist-upgrade -y | |
RUN apt install -y joe wget p7zip-full curl openssh-server build-essential zlib1g-dev libcurl4-gnutls-dev libncurses5 | |
COPY ./LinuxPAServer20.0.tar.gz ./ | |
RUN tar -xvf ./LinuxPAServer20.0.tar.gz | |
ENTRYPOINT ./PAServer-20.0/paserver -password= | |
# To create a docker image | |
# docker build -t viniciussanchez/paserver . | |
# To create a container | |
# docker run -p 64211:64211 -it viniciussanchez/paserver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment