Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Apr 22, 2019
2 parents 4b66bad + 2f969bd commit 0d50049
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 0 deletions.
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 ruby:2

# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# Clean up
RUN apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*

# Install jekyll
RUN gem install github-pages
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "Jekyll Now",
"dockerFile": "Dockerfile",
"appPort": [
4000
],
"extensions": [
"mrmlnc.vscode-scss"
]
}

0 comments on commit 0d50049

Please sign in to comment.