Added Dockerfile for all languages

This commit is contained in:
Jason Zhu 2020-12-07 16:11:54 +11:00
parent ac926e9789
commit dd70b15a31
5 changed files with 8 additions and 4 deletions

1
c#/Dockerfile Normal file
View File

@ -0,0 +1 @@
FROM mcr.microsoft.com/dotnet/sdk:3.1

View File

@ -2,20 +2,20 @@ version: "3"
services: services:
csharp: csharp:
container_name: csharp # image name container_name: csharp # image name
image: <dockerhub account>/csharp_sdk:1.0.0 image: cruxlight/csharp_sdk:1.0.0
build: build:
context: ./c# context: ./c#
golang: golang:
container_name: golang container_name: golang
image: <dockerhub account>/golang_sdk:1.0.0 image: cruxlight/golang_sdk:1.0.0
build: ./golang build: ./golang
nodejs: nodejs:
container_name: nodejs container_name: nodejs
image: <dockerhub account>/nodejs:1.0.0 image: cruxlight/nodejs:1.0.0
build: ./nodejs build: ./nodejs
python: python:
container_name: python container_name: python
image: <dockerhub account>/python:1.0.0 image: cruxlight/python:1.0.0
build: ./python build: ./python
first-public-dockerhub-image: first-public-dockerhub-image:
container_name: first-public-dockerhub-image container_name: first-public-dockerhub-image

1
golang/Dockerfile Normal file
View File

@ -0,0 +1 @@
FROM golang:1.12.5-alpine3.9 as builder

1
nodejs/Dockerfile Normal file
View File

@ -0,0 +1 @@
FROM node:12.4.0-alpine

1
python/Dockerfile Normal file
View File

@ -0,0 +1 @@
FROM python:3.7.3-alpine3.9