minke-generator-netmvc 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YWUyZWM3ZDlhMDZjY2RkZGNiZGNlYzVhNmE3MzY2MjVhZDQ5NzYzNw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YTk1NmM4YWVjY2ZkMzI2NWNhZTJlNjE1NmNhZDY5N2VkMWRhMTkwOA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NjllMGQwOThkYjEzZDFkYmRmODE4NWFkNDAxODBkZjIyOTg0MDZiMGQ0YzZh
|
|
10
|
+
ZTNhMmJhZDE0MGFlM2JlMDA5ZDY5Y2I5YzUwNmRhMzZlMzM1OWEwYmEzYjNh
|
|
11
|
+
MWVkYzRlMzBlYmJjNmE5NWEzNmM5ZGE5M2YxODEwMWUyZWFjMWY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDk5YTlmZjkwYjQzZjM0NjIxZTM0NTlmNTVhNTFiYTJmMTk0NDFkMmMyZmU3
|
|
14
|
+
NThjYTM0MTAzMWYzZjkxNDlkNGI2YmI5MTI2ZjYxMTc3N2FhZWE2NjIzOGNl
|
|
15
|
+
YmMzZGViNWQzYjVmNjFmMDJlNGJmMTBkMzFhZDkwYmMyOWY3NWU=
|
|
@@ -3,3 +3,9 @@
|
|
|
3
3
|
/obj
|
|
4
4
|
.DS_Store
|
|
5
5
|
/.nuget
|
|
6
|
+
/_build/dockerfile/<%= application_name %>/bin
|
|
7
|
+
/_build/dockerfile/<%= application_name %>/swagger_spec
|
|
8
|
+
/_build/dockerfile/<%= application_name %>/swagger_spec
|
|
9
|
+
/_build/dockerfile/<%= application_name %>/project.json
|
|
10
|
+
/_build/dockerfile/<%= application_name %>/project.lock.json
|
|
11
|
+
/_build/dockerfile/<%= application_name %>/web.config
|
data/lib/generators/netmvc/scaffold/_build/dockerfile/<%= application_name %>/Dockerfile.erb
CHANGED
|
@@ -28,12 +28,13 @@ COPY appsettings.ctmpl /<%= application_name %>/appsettings.ctmpl
|
|
|
28
28
|
# Add server files
|
|
29
29
|
ADD swagger_spec /swagger
|
|
30
30
|
ADD bin /<%= application_name %>/bin
|
|
31
|
-
ADD .nuget /<%= application_name %>/.nuget
|
|
32
31
|
ADD web.config /<%= application_name %>/web.config
|
|
33
32
|
ADD project.json /<%= application_name %>/project.json
|
|
34
33
|
|
|
35
34
|
WORKDIR /<%= application_name %>
|
|
36
35
|
ENV NUGET_PACKAGES="/<%= application_name %>/.nuget"
|
|
37
36
|
|
|
37
|
+
RUN dotnet restore --packages .nuget
|
|
38
|
+
|
|
38
39
|
ENTRYPOINT ["/bin/s6-svscan","/etc/s6"]
|
|
39
40
|
CMD []
|