Merge pull request #30 from 0x00Geek/master

fix the missing '#' in Dockerfile
This commit is contained in:
Li, Zeng 2018-06-06 15:03:30 +08:00 committed by GitHub
commit d1e6167253
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -1,11 +1,11 @@
#This Dockerfile is just a primitive one. We welcome optimization and simplification.
#Attention:
It is best to update the process of modification in the rear of the original code(reduce the order changes).
Otherwise the speed of construction will be influenced on a large scale.
#It is best to update the process of modification in the rear of the original code(reduce the order changes).
#Otherwise the speed of construction will be influenced on a large scale.
#TODO: some space can be saved by using the low version of gcc mirror(e.g-gcc:5).
But its mobility and dependence has not been tested yet and waiting for confirmation.
#But its mobility and dependence has not been tested yet and waiting for confirmation.
FROM gcc:8
@ -21,15 +21,15 @@ COPY . /usr/src/gstore
WORKDIR /usr/src/gstore
#ENV CC="ccache gcc" CXX="ccache g++"? should not be choosed.
Because it will trigger extremely troublesome bugs and its reason is still waiting for checking.
#Because it will trigger extremely troublesome bugs and its reason is still waiting for checking.
#The solution to the problem of java, whose default setting is using ansii to encode.
ENV LANG C.UTF-8
#Make compiling will be executed or replaced automatically when the container launch.
notice: RUN make still has some problems now.
#notice: RUN make still has some problems now.
#Subsequent test version can be put here.
And some procedures you need can also be attached here.
#And some procedures you need can also be attached here.
CMD ["make"]