Skip to content

Commit

Permalink
Working on Docker (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanja-4732 committed Jun 14, 2019
1 parent cd3c5a9 commit 69d13e5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#-----------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE in the project root for license information.
#-----------------------------------------------------------------------------------------

FROM node:10

# Install the dependencies
RUN npm install

# Verify git and process tools are installed
RUN apt-get install -y git procps

# ENV [set them here from the host]

# Set the default shell to bash rather than sh
ENV SHELL /bin/bash
9 changes: 9 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "MemeBot",
"dockerFile": "Dockerfile",
// "appPort": 3000,
"extensions": [
"dbaeumer.vscode-eslint"
],
"postCreateCommand": "npm install"
}

0 comments on commit 69d13e5

Please sign in to comment.