Skip to content

Commit d3cabf3

Browse files
docker file and coldfusion comments
1 parent a5882a3 commit d3cabf3

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

Dockerfile

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,27 @@
11
# create aspnet source image
2-
FROM microsoft/dotnet:2.1-sdk AS build-env
2+
FROM microsoft/dotnet:2.1-sdk AS build-env
3+
4+
# set working directory
5+
WORKDIR /app
6+
7+
# copy all my files into the working directory
8+
COPY . ./
9+
10+
# restore all the packages
11+
RUN dotnet restore
12+
13+
# publish the app
14+
RUN dotnet publish -c Release -o out
15+
16+
# expose container network
17+
EXPOSE 80
18+
19+
# create runtime image
20+
FROM microsoft/dotnet:2.1-aspnetcore-runtime
21+
WORKDIR /app
22+
COPY --from=build-env /app/out .
23+
ENTRYPOINT ["dotnet", "MyWebApp.dll"]
24+
25+
26+
27+

main.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ int main()
1212
}
1313

1414
// create a function that returns a collection of people first names
15-
#include <stdio.h>
1615

17-
int main()
16+
int func()
1817
{
1918
char *names[] = {"John", "Paul", "George", "Ringo"};
2019
for (int i = 0; i < 4; i++)

main.cfm

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// This should be a comment in the code
2+
3+
<!--- This is a ColdFusion Comment. Browsers do not receive it. --->
4+
15
<cfcomponent displayname="helloWorld" hint="helloWorld" output="false" accessors="true" >
26

37
<cffunction name="helloWorld" access="public" returntype="string" output="false" hint="helloWorld">

main.go

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ import "fmt"
55

66
func main() {
77
fmt.Println("Hello World")
8+
9+
// return 2 integers
10+
fmt.Println(add(1, 2))
11+
}
12+
13+
// create a function that returns two integers
14+
func add(x int, y int) int {
15+
return x + y
816
}
917

1018
// Path: main_test.go
19+
20+
// How do I run this code?
21+
// go test -v

0 commit comments

Comments
 (0)