You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM python:2
|
|
#FROM ubuntu:21.04
|
|
|
|
WORKDIR /app
|
|
ADD n9e /app
|
|
RUN mkdir -p /app/pub
|
|
ADD pub /app/pub/
|
|
RUN chmod +x n9e
|
|
|
|
EXPOSE 19000
|
|
EXPOSE 18000
|
|
|
|
CMD ["/app/n9e", "-h"]
|