Added jekyll now dev container

This commit is contained in:
Matt Bierner 2019-04-18 11:43:45 -07:00
Родитель 401821e282
Коммит 9740f94100
2 изменённых файлов: 27 добавлений и 0 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -0,0 +1,10 @@
{
"name": "Jekyll Now",
"dockerFile": "Dockerfile",
"appPort": [
4000
],
"extensions": [
"mrmlnc.vscode-scss"
]
}