Skip to content

Commit

Permalink
start docker stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
DryCreations committed May 31, 2021
1 parent 64b91b5 commit 0762afb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM ubuntu

RUN apt-get update \
&& apt-get -y install sudo \
&& apt-get -y install apt-utils \
&& apt-get -y install curl \
&& apt-get -y install unzip \
&& apt-get -y install git

RUN curl -fsSL https://deno.land/x/install/install.sh | sh

ENV DENO_INSTALL="root/.deno"
ENV PATH="$DENO_INSTALL/bin:$PATH"

ADD . /src/
2 changes: 1 addition & 1 deletion modules/auth.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
import { createOAuthDeviceAuth } from "https://cdn.pika.dev/@octokit/auth-oauth-device";
import { createOAuthDeviceAuth } from "https://cdn.skypack.dev/@octokit/auth-oauth-device?dts";

export default async function() {
const octokit = new Octokit({
Expand Down
Empty file added templates/assignment/README.md
Empty file.
Empty file.

0 comments on commit 0762afb

Please sign in to comment.