Skip to content

Commit c82b7df

Browse files
committed
[Git Commit]: at 2018-09-29 16:41:49-05:00
1 parent cd0ca5c commit c82b7df

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

.dockerignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules
2+
npm-debug.log
3+
Dockerfile*
4+
docker-compose*
5+
.dockerignore
6+
.git
7+
.gitignore
8+
.env
9+
*/bin
10+
*/obj
11+
README.md
12+
LICENSE
13+
.vscode

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM ubuntu:latest as ubuntu_builder
2+
RUN apt-get -y update && apt-get install curl -y
3+
4+
FROM deepinthought/vscode-shell-snippets:latest
5+
COPY . /vscode-shell-snippets
6+
LABEL Name=vscode-shell-snippets Version=0.1.0 Tag=Latest
7+
CMD [ "/bin/bash", "cd /vscode-shell-snippets" ]

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Visual Studio Code Shell Snippets
22

3+
[README.md](https://raw.githubusercontent.com/DeepInThought/vscode-shell-snippets/master/README.md).
4+
35
Code snippets of shell commands, functions and scripts for visual studio code.
46
<!-- TOC depthFrom:2 -->
57

0 commit comments

Comments
 (0)