mirror of
https://gitee.com/kennylee/docker.git
synced 2024-11-30 02:48:27 +08:00
17 lines
386 B
Docker
Executable File
17 lines
386 B
Docker
Executable File
FROM registry.cn-hangzhou.aliyuncs.com/kennylee/alpine
|
|
|
|
MAINTAINER kennylee26 <kennylee26@gmail.com>
|
|
|
|
ENV JETBRAINS_LICENSE_SERVER_VERSION v1.0.1
|
|
ENV HOME /root
|
|
|
|
WORKDIR $HOME
|
|
|
|
COPY JetBrainsLicenseServer_linux_64 $HOME
|
|
RUN chmod +x $HOME/JetBrainsLicenseServer_linux_64
|
|
|
|
EXPOSE 9999
|
|
|
|
# Define default command.
|
|
CMD ["./JetBrainsLicenseServer_linux_64", "--host=0.0.0.0", "--port=9999"]
|