-
Notifications
You must be signed in to change notification settings - Fork 79
请更新下Dockerfile #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
FROM python:3.6 |
兄弟,你这就是专业。🐮 |
node:14.15.4应该是python3.5。所以 FROM node:14.15.4
FROM python:3.6
COPY aspnetcore-runtime-2.1.16-linux-x64.tar.gz /data/
RUN mkdir -p /dotnet && \
tar zxf /data/aspnetcore-runtime-2.1.16-linux-x64.tar.gz -C /dotnet
ENV PATH=/dotnet:$PATH \
ASPNETCORE_URLS=http://+:8080 \
DOTNET_RUNNING_IN_CONTAINER=true \
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true
EXPOSE 8080
CMD ["/bin/bash"] |
这不是一个工业级的项目,但是做一个简单的知识图谱确实很实用 SmartKG/dockers/smartkg_services/aspnetcore/Dockerfile,需要指定版本 SmartKG/dockers/smartkg_services/ui/Dockerfile,需要指定版本 这样服务才能启动 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FROM python36这个"python36"在docker hub中找不到了;
FROM node最新版会有问题;
The text was updated successfully, but these errors were encountered: