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

Commit 0d50049

Browse files
committed
2 parents 4b66bad + 2f969bd commit 0d50049

File tree

8 files changed

+27
-0
lines changed

8 files changed

+27
-0
lines changed
File renamed without changes.
File renamed without changes.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#-----------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See LICENSE in the project root for license information.
4+
#-----------------------------------------------------------------------------------------
5+
6+
FROM ruby:2
7+
8+
# Install git, process tools
9+
RUN apt-get update && apt-get -y install git procps
10+
11+
# Clean up
12+
RUN apt-get autoremove -y \
13+
&& apt-get clean -y \
14+
&& rm -rf /var/lib/apt/lists/*
15+
16+
# Install jekyll
17+
RUN gem install github-pages
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "Jekyll Now",
3+
"dockerFile": "Dockerfile",
4+
"appPort": [
5+
4000
6+
],
7+
"extensions": [
8+
"mrmlnc.vscode-scss"
9+
]
10+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)