This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:12.10-buster as nodejs | |
FROM ruby:2.6-buster | |
COPY --from=nodejs /opt/yarn-v1.17.3 /opt/yarn | |
COPY --from=nodejs /usr/local/bin/node /usr/local/bin/node | |
RUN ln -s /opt/yarn/bin/yarn /usr/local/bin/yarn \ | |
&& ln -s /opt/yarn/bin/yarn /usr/local/bin/yarnpkg | |
RUN gem install rails |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1") | |
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.4") | |
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.3") | |
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
organization := "io.github.isuzuki" | |
name := "scala-samples" | |
version := "0.1" | |
scalaVersion := "2.12.6" | |
scalacOptions ++= Seq( | |
"-deprecation", | |
"-encoding", "UTF-8", | |
"-feature", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian | |
RUN apt-get update \ | |
&& apt-get upgrade -y \ | |
# add install packages | |
&& apt-get install -y {packages} \ | |
&& apt-get purge -y --auto-remove |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
set -ue -o pipefail |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @see https://scalameta.org/scalafmt/docs/configuration.html | |
version = 2.3.2 | |
align.openParenCallSite = true | |
align.openParenDefnSite = true | |
maxColumn = 120 | |
continuationIndent.defnSite = 2 | |
assumeStandardLibraryStripMargin = true | |
danglingParentheses = true | |
rewrite.rules = [AvoidInfix, SortImports, RedundantBraces, RedundantParens, SortModifiers] | |
docstrings = JavaDoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 4 | |
indent_style = space | |
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Config for PHP-CS-Fixer ver2 | |
*/ | |
$rules = [ | |
'@PSR2' => true, | |
// addtional rules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Building the VirtualBox Guest Additions kernel modules | |
The headers for the current running kernel were not found. If the following | |
module compilation fails then this could be the reason. | |
The missing package can be probably installed with | |
yum install kernel-devel-2.6.32-573.el6.x86_64 | |
Building the main Guest Additions module[FAILED] | |
(Look at /var/log/vboxadd-install.log to find out what went wrong) | |
Doing non-kernel setup of the Guest Additions[ OK ] |