mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-01-20 02:24:45 +00:00
* update scala to 2.13 & update dependencies * fix test * import scodec-akka * scala 2.13 fixes * Work around futures not completing when awaited within object constructor Co-authored-by: Mazo <mazo2@hotmail.com>
17 lines
320 B
Docker
17 lines
320 B
Docker
FROM mozilla/sbt:8u232_1.3.8
|
|
|
|
EXPOSE 51000
|
|
EXPOSE 51001
|
|
EXPOSE 51002
|
|
|
|
COPY . /PSF-LoginServer
|
|
|
|
WORKDIR /PSF-LoginServer
|
|
|
|
RUN wget https://github.com/psforever/PSCrypto/releases/download/v1.1/pscrypto-lib-1.1.zip && \
|
|
unzip pscrypto-lib-1.1.zip && rm pscrypto-lib-1.1.zip
|
|
|
|
RUN sbt compile
|
|
|
|
CMD ["sbt", "pslogin/run"]
|