Skip to content

Instantly share code, notes, and snippets.

View mikebz's full-sized avatar
🎯
Focusing

Mike Borozdin mikebz

🎯
Focusing
View GitHub Profile
@mikebz
mikebz / .nanorc
Last active December 4, 2019 04:53
nanorc file
set constantshow
include "/usr/share/nano/*.nanorc"
@mikebz
mikebz / Dockerfile
Last active October 2, 2017 04:27
Dockerfile for Django, Python and Webpack static build
FROM python:3.6-slim
# install node
RUN apt-get -y update
RUN apt-get -y install curl
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash
RUN apt-get -y install nodejs
WORKDIR /app